home *** CD-ROM | disk | FTP | other *** search
INSTALL Professional project | 1996-06-10 | 4.5 KB | 138 lines |
- /*
- * INSTALL.DAT
- * Project: Fractal Screen Savers
- * Version: 1.10
- */
-
- @DefineProject
- @Name = "Fractal Screen Savers"
- @Version = "1.10"
- @Subdir = "\\Chaos"
- @OutDrive = Z
- @EndProject
-
- @DefineVars
- @Qstring @PkgType = "BOX"
- @Integer @Blue = @RGB(0,0,255) //DEFINE COLOR BLUE
- @Integer @Black = @RGB(0,0,0) //DEFINE COLOR BLACK
- @EndVars
-
- @PkgType = @GetINI("COSMI CDSETUP", "PkgMethod")
-
-
- @BackgroundMode(3,@Blue,@Black)
- @Display
- @Cls
- Congratulations on your purchase of @Name!
-
- This program will now install @Name
- to your hard disk drive and verify the integrity
- of the CD-ROM disk. You may press the [Esc] key
- at any time to abort the installation.
-
-
- @Pause
- @EndDisplay
-
- @GetOutDrive @OutDrive
- @Cls
- Select the HARD disk drive on which you wish to install your
- new copy of @Name. ie. "Drive C:"
-
-
-
-
-
-
- @Suppress(0, 1)
- Use the [CURSOR] to highlight a drive letter. Press [ENTER]
- to select that drive.
- @EndOutDrive
- /*
- @GetSubdir
- @Cls
- INSTALL is now suggesting a name for a program destination subdirectory
- to which files will be copied. Press [ENTER] to use @OutDrive:@SubDir,
- or type "\" and a "path", where "path" is the subdirectory you want INSTALL
- to use.
-
-
- @Prompt = "Which subdirectory ([Enter] = @Subdir) ?"
- @EndSubdir
- */
- @DefineVars
- @Qstring @Item1 = "@OutDrive:\\@Subdir\\hextrap.exe, Hex Trap,
- @OutDrive:\\@Subdir\\hextrap.ico"
- @Qstring @Item2 = "@OutDrive:\\@Subdir\\hextrap.hlp, Hex Trap Help,
- @OutDrive:\\@Subdir\\hextrap.hlp"
- @Qstring @Item3 = "@OutDrive:\\@Subdir\\hextrap.wri, Hex Trap manual,
- @OutDrive:\\@Subdir\\hextrap.wri"
-
- @EndVars
-
- @DefineDisk
- @Label = "WINDOWS Disk #1"
- @BeginLib 770.001
- @F CLUSTER.SCR @S 27904 @O @WindowsDrive:\\@WindowsDir\\CLUSTER.SCR
- @F GEM.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\GEM.SCR
- @F NEBULA.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\NEBULA.SCR
- @F PAUSE.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\PAUSE.SCR
- @F SHUTTLE.SCR @S 27904 @O @WindowsDrive:\\@WindowsDir\\SHUTTLE.SCR
- @F SPECS.SCR @S 27904 @O @WindowsDrive:\\@WindowsDir\\SPECS.SCR
- @F SPONGE.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\SPONGE.SCR
- @F SUGAR.SCR @S 27904 @O @WindowsDrive:\\@WindowsDir\\SUGAR.SCR
- @F TWIRLER.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\TWIRLER.SCR
- @F VOLVOX.SCR @S 27648 @O @WindowsDrive:\\@WindowsDir\\VOLVOX.SCR
- @F WHEAT.SCR @S 27392 @O @WindowsDrive:\\@WindowsDir\\WHEAT.SCR
- @F BWCC.DLL @S 164928 @O @WindowsDrive:\\@WindowsDir\\SYSTEM\\BWCC.DLL
- @F AGATE.SCR @S 25600 @O @WindowsDrive:\\@WindowsDir\\AGATE.SCR
- @F AMOEBA.SCR @S 26624 @O @WindowsDrive:\\@WindowsDir\\AMOEBA.SCR
- @F CANDY.SCR @S 25344 @O @WindowsDrive:\\@WindowsDir\\CANDY.SCR
- @F CORN.SCR @S 24832 @O @WindowsDrive:\\@WindowsDir\\CORN.SCR
- @F EYES.SCR @S 26880 @O @WindowsDrive:\\@WindowsDir\\EYES.SCR
- @F GALAXY.SCR @S 26624 @O @WindowsDrive:\\@WindowsDir\\GALAXY.SCR
- @F LADYBUG.SCR @S 27392 @O @WindowsDrive:\\@WindowsDir\\LADYBUG.SCR
- @F NOVA.SCR @S 25344 @O @WindowsDrive:\\@WindowsDir\\NOVA.SCR
- @F PAWS.SCR @S 26624 @O @WindowsDrive:\\@WindowsDir\\PAWS.SCR
- @F PINWHEEL.SCR @S 25344 @O @WindowsDrive:\\@WindowsDir\\PINWHEEL.SCR
- @F REENTRY.SCR @S 26880 @O @WindowsDrive:\\@WindowsDir\\REENTRY.SCR
- @F STARFISH.SCR @S 25344 @O @WindowsDrive:\\@WindowsDir\\STARFISH.SCR
- @F CPALETTE.DLL @S 64512 @O @WindowsDrive:\\@WindowsDir\\SYSTEM\\CPALETTE.DLL
- @F CPBITMAP.DLL @S 175872 @O @WindowsDrive:\\@WindowsDir\\SYSTEM\\CPBITMAP.DLL
- @F README.NOW @S 1680 @O @WindowsDrive:\\@WindowsDir\\README.NOW
- @EndLib
- @EndDisk
-
-
- @Finish
- @If("@PkgType" == "JEWEL")
- @Mkdir("@OutDrive:\\@Subdir")
- @ProgramManager("[CreateGroup(COSMI @Name)][AddItem(@Item1, 0)]
- [AddItem(@Item2, 0)][AddItem(@Item3, 0)]")
- @Copy("hextrap.*", "@OutDrive:\\@Subdir\\*.*")
- @Copy("snd*.*", "@OutDrive:\\@Subdir\\*.*")
- @Else
- @Mkdir("@OutDrive:\\@Subdir")
- @ProgramManager("[CreateGroup(COSMI @Name)][AddItem(@Item1, 0)]
- [AddItem(@Item2, 0)][AddItem(@Item3, 0)]")
- @Copy("hextrap.*", "@OutDrive:\\@Subdir\\*.*")
- @Copy("snd*.*", "@OutDrive:\\@Subdir\\*.*")
- @EndIf
- @ChDrive @OutDrive
- @ChDir "@SubDir"
- //delete files from cosmitmp.dir and remove that dir
- @Delete("@OutDrive:\\cosmitmp.dir\\*.*")
- @RmDir("@OutDrive:\\cosmitmp.dir")
-
- @Cls
- Installation of @Name is now finished.
- A New application group has been created titled COSMI.
-
-
-
-
- @Pause
- @EndFinish
-
- /* end-of-file */
-